home *** CD-ROM | disk | FTP | other *** search
/ Personal Computer World 2009 February / PCWFEB09.iso / Software / Linux / Kubuntu 8.10 / kubuntu-8.10-desktop-i386.iso / casper / filesystem.squashfs / usr / lib / python2.5 / fileinput.pyc (.txt) < prev    next >
Python Compiled Bytecode  |  2008-10-29  |  15KB  |  494 lines

  1. # Source Generated with Decompyle++
  2. # File: in.pyc (Python 2.5)
  3.  
  4. '''Helper class to quickly write a loop over all standard input files.
  5.  
  6. Typical use is:
  7.  
  8.     import fileinput
  9.     for line in fileinput.input():
  10.         process(line)
  11.  
  12. This iterates over the lines of all files listed in sys.argv[1:],
  13. defaulting to sys.stdin if the list is empty.  If a filename is \'-\' it
  14. is also replaced by sys.stdin.  To specify an alternative list of
  15. filenames, pass it as the argument to input().  A single file name is
  16. also allowed.
  17.  
  18. Functions filename(), lineno() return the filename and cumulative line
  19. number of the line that has just been read; filelineno() returns its
  20. line number in the current file; isfirstline() returns true iff the
  21. line just read is the first line of its file; isstdin() returns true
  22. iff the line was read from sys.stdin.  Function nextfile() closes the
  23. current file so that the next iteration will read the first line from
  24. the next file (if any); lines not read from the file will not count
  25. towards the cumulative line count; the filename is not changed until
  26. after the first line of the next file has been read.  Function close()
  27. closes the sequence.
  28.  
  29. Before any lines have been read, filename() returns None and both line
  30. numbers are zero; nextfile() has no effect.  After all lines have been
  31. read, filename() and the line number functions return the values
  32. pertaining to the last line read; nextfile() has no effect.
  33.  
  34. All files are opened in text mode by default, you can override this by
  35. setting the mode parameter to input() or FileInput.__init__().
  36. If an I/O error occurs during opening or reading a file, the IOError
  37. exception is raised.
  38.  
  39. If sys.stdin is used more than once, the second and further use will
  40. return no lines, except perhaps for interactive use, or if it has been
  41. explicitly reset (e.g. using sys.stdin.seek(0)).
  42.  
  43. Empty files are opened and immediately closed; the only time their
  44. presence in the list of filenames is noticeable at all is when the
  45. last file opened is empty.
  46.  
  47. It is possible that the last line of a file doesn\'t end in a newline
  48. character; otherwise lines are returned including the trailing
  49. newline.
  50.  
  51. Class FileInput is the implementation; its methods filename(),
  52. lineno(), fileline(), isfirstline(), isstdin(), nextfile() and close()
  53. correspond to the functions in the module.  In addition it has a
  54. readline() method which returns the next input line, and a
  55. __getitem__() method which implements the sequence behavior.  The
  56. sequence must be accessed in strictly sequential order; sequence
  57. access and readline() cannot be mixed.
  58.  
  59. Optional in-place filtering: if the keyword argument inplace=1 is
  60. passed to input() or to the FileInput constructor, the file is moved
  61. to a backup file and standard output is directed to the input file.
  62. This makes it possible to write a filter that rewrites its input file
  63. in place.  If the keyword argument backup=".<some extension>" is also
  64. given, it specifies the extension for the backup file, and the backup
  65. file remains around; by default, the extension is ".bak" and it is
  66. deleted when the output file is closed.  In-place filtering is
  67. disabled when standard input is read.  XXX The current implementation
  68. does not work for MS-DOS 8+3 filesystems.
  69.  
  70. Performance: this module is unfortunately one of the slower ways of
  71. processing large numbers of input lines.  Nevertheless, a significant
  72. speed-up has been obtained by using readlines(bufsize) instead of
  73. readline().  A new keyword argument, bufsize=N, is present on the
  74. input() function and the FileInput() class to override the default
  75. buffer size.
  76.  
  77. XXX Possible additions:
  78.  
  79. - optional getopt argument processing
  80. - isatty()
  81. - read(), read(size), even readlines()
  82.  
  83. '''
  84. import sys
  85. import os
  86. __all__ = [
  87.     'input',
  88.     'close',
  89.     'nextfile',
  90.     'filename',
  91.     'lineno',
  92.     'filelineno',
  93.     'isfirstline',
  94.     'isstdin',
  95.     'FileInput']
  96. _state = None
  97. DEFAULT_BUFSIZE = 8192
  98.  
  99. def input(files = None, inplace = 0, backup = '', bufsize = 0, mode = 'r', openhook = None):
  100.     '''input([files[, inplace[, backup[, mode[, openhook]]]]])
  101.  
  102.     Create an instance of the FileInput class. The instance will be used
  103.     as global state for the functions of this module, and is also returned
  104.     to use during iteration. The parameters to this function will be passed
  105.     along to the constructor of the FileInput class.
  106.     '''
  107.     global _state
  108.     if _state and _state._file:
  109.         raise RuntimeError, 'input() already active'
  110.     
  111.     _state = FileInput(files, inplace, backup, bufsize, mode, openhook)
  112.     return _state
  113.  
  114.  
  115. def close():
  116.     '''Close the sequence.'''
  117.     global _state
  118.     state = _state
  119.     _state = None
  120.     if state:
  121.         state.close()
  122.     
  123.  
  124.  
  125. def nextfile():
  126.     '''
  127.     Close the current file so that the next iteration will read the first
  128.     line from the next file (if any); lines not read from the file will
  129.     not count towards the cumulative line count. The filename is not
  130.     changed until after the first line of the next file has been read.
  131.     Before the first line has been read, this function has no effect;
  132.     it cannot be used to skip the first file. After the last line of the
  133.     last file has been read, this function has no effect.
  134.     '''
  135.     if not _state:
  136.         raise RuntimeError, 'no active input()'
  137.     
  138.     return _state.nextfile()
  139.  
  140.  
  141. def filename():
  142.     '''
  143.     Return the name of the file currently being read.
  144.     Before the first line has been read, returns None.
  145.     '''
  146.     if not _state:
  147.         raise RuntimeError, 'no active input()'
  148.     
  149.     return _state.filename()
  150.  
  151.  
  152. def lineno():
  153.     '''
  154.     Return the cumulative line number of the line that has just been read.
  155.     Before the first line has been read, returns 0. After the last line
  156.     of the last file has been read, returns the line number of that line.
  157.     '''
  158.     if not _state:
  159.         raise RuntimeError, 'no active input()'
  160.     
  161.     return _state.lineno()
  162.  
  163.  
  164. def filelineno():
  165.     '''
  166.     Return the line number in the current file. Before the first line
  167.     has been read, returns 0. After the last line of the last file has
  168.     been read, returns the line number of that line within the file.
  169.     '''
  170.     if not _state:
  171.         raise RuntimeError, 'no active input()'
  172.     
  173.     return _state.filelineno()
  174.  
  175.  
  176. def fileno():
  177.     '''
  178.     Return the file number of the current file. When no file is currently
  179.     opened, returns -1.
  180.     '''
  181.     if not _state:
  182.         raise RuntimeError, 'no active input()'
  183.     
  184.     return _state.fileno()
  185.  
  186.  
  187. def isfirstline():
  188.     '''
  189.     Returns true the line just read is the first line of its file,
  190.     otherwise returns false.
  191.     '''
  192.     if not _state:
  193.         raise RuntimeError, 'no active input()'
  194.     
  195.     return _state.isfirstline()
  196.  
  197.  
  198. def isstdin():
  199.     '''
  200.     Returns true if the last line was read from sys.stdin,
  201.     otherwise returns false.
  202.     '''
  203.     if not _state:
  204.         raise RuntimeError, 'no active input()'
  205.     
  206.     return _state.isstdin()
  207.  
  208.  
  209. class FileInput:
  210.     '''class FileInput([files[, inplace[, backup[, mode[, openhook]]]]])
  211.  
  212.     Class FileInput is the implementation of the module; its methods
  213.     filename(), lineno(), fileline(), isfirstline(), isstdin(), fileno(),
  214.     nextfile() and close() correspond to the functions of the same name
  215.     in the module.
  216.     In addition it has a readline() method which returns the next
  217.     input line, and a __getitem__() method which implements the
  218.     sequence behavior. The sequence must be accessed in strictly
  219.     sequential order; random access and readline() cannot be mixed.
  220.     '''
  221.     
  222.     def __init__(self, files = None, inplace = 0, backup = '', bufsize = 0, mode = 'r', openhook = None):
  223.         if isinstance(files, basestring):
  224.             files = (files,)
  225.         elif files is None:
  226.             files = sys.argv[1:]
  227.         
  228.         if not files:
  229.             files = ('-',)
  230.         else:
  231.             files = tuple(files)
  232.         self._files = files
  233.         self._inplace = inplace
  234.         self._backup = backup
  235.         if not bufsize:
  236.             pass
  237.         self._bufsize = DEFAULT_BUFSIZE
  238.         self._savestdout = None
  239.         self._output = None
  240.         self._filename = None
  241.         self._lineno = 0
  242.         self._filelineno = 0
  243.         self._file = None
  244.         self._isstdin = False
  245.         self._backupfilename = None
  246.         self._buffer = []
  247.         self._bufindex = 0
  248.         if mode not in ('r', 'rU', 'U', 'rb'):
  249.             raise ValueError("FileInput opening mode must be one of 'r', 'rU', 'U' and 'rb'")
  250.         
  251.         self._mode = mode
  252.         if inplace and openhook:
  253.             raise ValueError('FileInput cannot use an opening hook in inplace mode')
  254.         elif openhook and not callable(openhook):
  255.             raise ValueError('FileInput openhook must be callable')
  256.         
  257.         self._openhook = openhook
  258.  
  259.     
  260.     def __del__(self):
  261.         self.close()
  262.  
  263.     
  264.     def close(self):
  265.         self.nextfile()
  266.         self._files = ()
  267.  
  268.     
  269.     def __iter__(self):
  270.         return self
  271.  
  272.     
  273.     def next(self):
  274.         
  275.         try:
  276.             line = self._buffer[self._bufindex]
  277.         except IndexError:
  278.             pass
  279.  
  280.         self._bufindex += 1
  281.         self._lineno += 1
  282.         self._filelineno += 1
  283.         return line
  284.         line = self.readline()
  285.         return line
  286.  
  287.     
  288.     def __getitem__(self, i):
  289.         if i != self._lineno:
  290.             raise RuntimeError, 'accessing lines out of order'
  291.         
  292.         
  293.         try:
  294.             return self.next()
  295.         except StopIteration:
  296.             raise IndexError, 'end of input reached'
  297.  
  298.  
  299.     
  300.     def nextfile(self):
  301.         savestdout = self._savestdout
  302.         self._savestdout = 0
  303.         if savestdout:
  304.             sys.stdout = savestdout
  305.         
  306.         output = self._output
  307.         self._output = 0
  308.         if output:
  309.             output.close()
  310.         
  311.         file = self._file
  312.         self._file = 0
  313.         if file and not (self._isstdin):
  314.             file.close()
  315.         
  316.         backupfilename = self._backupfilename
  317.         self._backupfilename = 0
  318.         if backupfilename and not (self._backup):
  319.             
  320.             try:
  321.                 os.unlink(backupfilename)
  322.             except OSError:
  323.                 pass
  324.             except:
  325.                 None<EXCEPTION MATCH>OSError
  326.             
  327.  
  328.         None<EXCEPTION MATCH>OSError
  329.         self._isstdin = False
  330.         self._buffer = []
  331.         self._bufindex = 0
  332.  
  333.     
  334.     def readline(self):
  335.         
  336.         try:
  337.             line = self._buffer[self._bufindex]
  338.         except IndexError:
  339.             pass
  340.  
  341.         self._bufindex += 1
  342.         self._lineno += 1
  343.         self._filelineno += 1
  344.         return line
  345.         if not self._file:
  346.             self._filename = self._files[0]
  347.             self._files = self._files[1:]
  348.             self._filelineno = 0
  349.             self._file = None
  350.             self._isstdin = False
  351.             self._backupfilename = 0
  352.             if self._filename == '-':
  353.                 self._filename = '<stdin>'
  354.                 self._file = sys.stdin
  355.                 self._isstdin = True
  356.             elif self._inplace:
  357.                 if not self._backup:
  358.                     pass
  359.                 self._backupfilename = self._filename + os.extsep + 'bak'
  360.                 
  361.                 try:
  362.                     os.unlink(self._backupfilename)
  363.                 except os.error:
  364.                     self if not self._files else self
  365.                     self if not self._files else self
  366.                 except:
  367.                     self if not self._files else self
  368.  
  369.                 os.rename(self._filename, self._backupfilename)
  370.                 self._file = open(self._backupfilename, self._mode)
  371.                 
  372.                 try:
  373.                     perm = os.fstat(self._file.fileno()).st_mode
  374.                 except OSError:
  375.                     self if not self._files else self
  376.                     self if not self._files else self
  377.                     self._output = open(self._filename, 'w')
  378.                 except:
  379.                     self if not self._files else self
  380.  
  381.                 fd = os.open(self._filename, os.O_CREAT | os.O_WRONLY | os.O_TRUNC, perm)
  382.                 self._output = os.fdopen(fd, 'w')
  383.                 
  384.                 try:
  385.                     if hasattr(os, 'chmod'):
  386.                         os.chmod(self._filename, perm)
  387.                 except OSError:
  388.                     self if not self._files else self
  389.                     self if not self._files else self
  390.                 except:
  391.                     self if not self._files else self
  392.  
  393.                 self._savestdout = sys.stdout
  394.                 sys.stdout = self._output
  395.             elif self._openhook:
  396.                 self._file = self._openhook(self._filename, self._mode)
  397.             else:
  398.                 self._file = open(self._filename, self._mode)
  399.         
  400.         self._buffer = self._file.readlines(self._bufsize)
  401.         self._bufindex = 0
  402.         if not self._buffer:
  403.             self.nextfile()
  404.         
  405.         return self.readline()
  406.  
  407.     
  408.     def filename(self):
  409.         return self._filename
  410.  
  411.     
  412.     def lineno(self):
  413.         return self._lineno
  414.  
  415.     
  416.     def filelineno(self):
  417.         return self._filelineno
  418.  
  419.     
  420.     def fileno(self):
  421.         if self._file:
  422.             
  423.             try:
  424.                 return self._file.fileno()
  425.             except ValueError:
  426.                 return -1
  427.             except:
  428.                 None<EXCEPTION MATCH>ValueError
  429.             
  430.  
  431.         None<EXCEPTION MATCH>ValueError
  432.         return -1
  433.  
  434.     
  435.     def isfirstline(self):
  436.         return self._filelineno == 1
  437.  
  438.     
  439.     def isstdin(self):
  440.         return self._isstdin
  441.  
  442.  
  443.  
  444. def hook_compressed(filename, mode):
  445.     ext = os.path.splitext(filename)[1]
  446.     if ext == '.gz':
  447.         import gzip as gzip
  448.         return gzip.open(filename, mode)
  449.     elif ext == '.bz2':
  450.         import bz2 as bz2
  451.         return bz2.BZ2File(filename, mode)
  452.     else:
  453.         return open(filename, mode)
  454.  
  455.  
  456. def hook_encoded(encoding):
  457.     import codecs
  458.     
  459.     def openhook(filename, mode):
  460.         return codecs.open(filename, mode, encoding)
  461.  
  462.     return openhook
  463.  
  464.  
  465. def _test():
  466.     import getopt as getopt
  467.     inplace = 0
  468.     backup = 0
  469.     (opts, args) = getopt.getopt(sys.argv[1:], 'ib:')
  470.     for o, a in opts:
  471.         if o == '-i':
  472.             inplace = 1
  473.         
  474.         if o == '-b':
  475.             backup = a
  476.             continue
  477.     
  478.     for line in input(args, inplace = inplace, backup = backup):
  479.         if line[-1:] == '\n':
  480.             line = line[:-1]
  481.         
  482.         if line[-1:] == '\r':
  483.             line = line[:-1]
  484.         
  485.         if not isfirstline() or '*':
  486.             pass
  487.         print '%d: %s[%d]%s %s' % (lineno(), filename(), filelineno(), '', line)
  488.     
  489.     print '%d: %s[%d]' % (lineno(), filename(), filelineno())
  490.  
  491. if __name__ == '__main__':
  492.     _test()
  493.  
  494.